home *** CD-ROM | disk | FTP | other *** search
/ CYBER.XPO.95 / CYBER.XPO.95 (Arsenal Computer).ISO / popreq / amiga1 / dsgnrv13.lha / DesignerDemo / MultipleDemo / C / defs.h next >
C/C++ Source or Header  |  1994-01-20  |  188b  |  9 lines

  1. struct WindowNode
  2. {
  3.   struct WindowNode *ln_Succ;
  4.   struct WindowNode *ln_Pred;
  5.   struct Window *Win;
  6.   struct Gadget *WinGList;
  7.   struct Gadget *WinGadgets[10];
  8.   void * WinVisualInfo;
  9. };